Tables [dbo].[Tagged_Section]
Properties
PropertyValue
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified1:17:35 PM Thursday, February 23, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_Tagged_Section: TaggedSectionIDTaggedSectionIDnumeric(18,0)9
No
Foreign Keys FK_TaggedSection_TaggedPageFormatRef: [dbo].[Tagged_Page_Format_Ref].TaggedPageFormatIDIndexes IX_Tagged_Section_TaggedPageFormatID: TaggedPageFormatIDTaggedPageFormatIDnumeric(18,0)9
No
TaggedSectionCodechar(2)2
No
TaggedSectionNamevarchar(50)50
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Tagged_Section: TaggedSectionIDPK_Tagged_SectionTaggedSectionID
Yes
IX_Tagged_Section_TaggedPageFormatIDTaggedPageFormatID
Foreign Keys Foreign Keys
NameColumns
FK_TaggedSection_TaggedPageFormatRefTaggedPageFormatID->[dbo].[Tagged_Page_Format_Ref].[TaggedPageFormatID]
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Tagged_Section]
(
[TaggedSectionID] [numeric] (18, 0) NOT NULL,
[TaggedPageFormatID] [numeric] (18, 0) NOT NULL,
[TaggedSectionCode] [char] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[TaggedSectionName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Tagged_Section] ADD CONSTRAINT [PK_Tagged_Section] PRIMARY KEY CLUSTERED ([TaggedSectionID]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_Tagged_Section_TaggedPageFormatID] ON [dbo].[Tagged_Section] ([TaggedPageFormatID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Tagged_Section] ADD CONSTRAINT [FK_TaggedSection_TaggedPageFormatRef] FOREIGN KEY ([TaggedPageFormatID]) REFERENCES [dbo].[Tagged_Page_Format_Ref] ([TaggedPageFormatID])
GO
GRANT REFERENCES ON  [dbo].[Tagged_Section] TO [IMIS]
GRANT SELECT ON  [dbo].[Tagged_Section] TO [IMIS]
GRANT INSERT ON  [dbo].[Tagged_Section] TO [IMIS]
GRANT DELETE ON  [dbo].[Tagged_Section] TO [IMIS]
GRANT UPDATE ON  [dbo].[Tagged_Section] TO [IMIS]
GO
Uses
Used By